home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-0497 / AMOSLIST / text0050.txt < prev    next >
Encoding:
Text File  |  1998-06-24  |  1.9 KB  |  51 lines

  1. On 09-Apr-97, Matt Ward wrote:
  2. >On Tue, 8 Apr 1997, Laurie Curwood wrote:
  3.  
  4. >That was me. I`m nearly finished a game (with no name yet) which started
  5. >to be a Hired Guns clone (remember it?) but kind of mutated. It`s now a
  6. >poor man`s Alien Breed 3d - it`s graphics are orthogonal. (Unfortunately)
  7. >What I wanted was a fast method to zoom a 128x100 section of one screen to
  8. >half it`s size onto another screen. I have one to enlarge but not to
  9. >reduce. Can you do it? If so or you need more info drop me a line,
  10. >Any help would be really appreciated! 
  11.  
  12. Right. Reduction: Turning 4 pixels to 1. Can be done, fast, but probably
  13. not fast enough for an arcade game.
  14.  
  15. Answer these simple questions and I will try and get to work on it:
  16.  
  17. 1. Generalised routine, or specialised?
  18.    (I.E. Do you want a routine written SPECIFICALLY for this project,
  19.    which will be a bit faster, or a general one, that can be used for
  20.    other stuff. More parameters, etc. would be the main difference).
  21.  
  22. 2. How big an area do you want to reduce?
  23.    (It needs to be a multiple of 8 horizontally, and 2 vertically.)
  24.  
  25. 3. How many colours does your screen have?
  26.    (Obviously, the less the faster!)
  27.  
  28. 4. Is it double buffered?
  29.    (Double buffering makes screen operations harder to code!)
  30.  
  31. 5. Qualitative, quantitive or fast reduction?
  32.    (Qualititive will create a palette table with all combinations of the
  33.    four pixels, and search the palette for best matches, which it will
  34.    use),(Quantitive is MUCH faster than qualitative, it just counts 
  35.    the pixels in use. The most of any colour will be used.),(Fast is the
  36.    fastest of all. It chucks out the other three pixels, and just uses
  37.    one. This method is the only one that could be used realtime on a
  38.    standard processor.)
  39.  
  40. By the way everyone, how can I tell if a message was addressed to everyone or
  41. ALL??? It is very confusing!
  42.  
  43. -- 
  44. ***************
  45. Falcon Software
  46. ***************
  47.  
  48. WHAT A BRILLIANT SIGNATURE I HAVE!
  49.  
  50.  
  51.